home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 019 / blackjack / error.c < prev    next >
C/C++ Source or Header  |  1995-03-17  |  253b  |  16 lines

  1. /*  ERROR.C          prints fatal error message
  2.  */
  3.  
  4. #include "local.h"
  5.  
  6. void error(s1, s2)
  7.    char s1[], s2[];
  8. {
  9.    write(stderr, s1, strlen(s1));
  10.    write(stderr, " ", 1);
  11.    write(stderr, s2, strlen(s2));
  12.    write(stderr, "\n", 1);
  13.    exit(FAIL);
  14. }
  15.  
  16.